home *** CD-ROM | disk | FTP | other *** search
-
- ISAPI Web application for Delphi 3 and 4
- =========================================
-
- The included project is an example of
- a Delphi 3 and 4 Web Module application.
-
- Web applications can be created with Delphi
- using "File --> New --> Web Module" wizard.
-
- This example uses the ISAPI model, which is
- used by Microsoft IIS (Internet Information Server).
-
- The example, when compiled, creates a DLL file.
- This DLL (TeeISAPI.DLL) should be copied to your
- "script" folder ( by default is c:\inetpub\scripts ).
-
- To run the ISAPI dll, copy the included TeeISAPI.htm file
- to your www root folder and open it with your www browser:
-
- http://localhost/teeisapi.htm
-
-
- This htm page has an embedded form used to call the dll
- passing several parameters to create the resulting Chart image.
-
- In this example, the Chart is exported to a TJPEGImage
- component (using Delphi JPEG.DCU unit), and then
- is saved to a temporary memory stream.
- The client receives the JPEG bytes directly, with no
- intermediary files or HTM code.
-
- Another way is to save the JPEG image to a file on the server,
- and then send back to the client an HTML page
- containing a link to the saved file. ( <img src="/temp.jpg" )
-
- -----------------------------------------------------------------
-